* frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 15 Apr 2010 18:19:00 +0000 (11:19 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 15 Apr 2010 18:19:00 +0000 (11:19 -0700)
src/ChangeLog
src/frame.h

index 606ef437a842c4eb02abec1ce07c90f6dd931392..1141863164c7d0ec13cd76a0ae5dab32427fea26 100644 (file)
@@ -1,3 +1,7 @@
+2010-04-15  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression.
+
 2010-04-14  Dan Nicolaescu  <dann@ics.uci.edu>
 
        Reduce cpp use in Makefile.in.
index 36b0b6b069cabdb0debc17ce58c8fe48675d33b6..8f563ca9d77e033f8ff8da8a7862cdacceba0a67 100644 (file)
@@ -793,7 +793,7 @@ typedef struct frame *FRAME_PTR;
 
 #define FRAME_SAMPLE_VISIBILITY(f) \
   (((f)->async_visible && (f)->visible != (f)->async_visible) ? \
-   SET_FRAME_GARBAGED (f) : 0, \
+   SET_FRAME_GARBAGED (f) : \
    (f)->visible = (f)->async_visible, \
    (f)->iconified = (f)->async_iconified)